home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-05-05 | 625 b | 24 lines | [TEXT/RLAB] |
- max:
-
- Synopsis: Compute the maximum value(s) in a matrix, or two
- matrices.
-
- Syntax: max ( A )
- max ( A , B )
-
- Description:
-
- Max returns the maximum value(s) contained in the matrix A. If
- the argument is a vector, then the largest value is returned.
- If A is a MxN matrix, then a row-vector of N columns is
- returned containing the maximum value from each column of A.
-
- If max is used with two arguments, then max returns a matrix
- the same size as A and B filled with the largest elements from
- A and B.
-
- When matrix elements are complex the absolute value is used
- for comparison purposes.
-
- See Also: maxi, min, mini
-